home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel, Inc.',
- 'Copyright': u'Copyright (c) 2005 Corel, Inc. All rights reserved.',
- 'Description': 'Factory default preset for Black and White Film effect',
- 'Host': 'Paint Shop Pro 10',
- 'Host Version': '10.00',
- }
-
- def Preset_BlackAndWhiteFilm():
- return {
- 'FilterColor': App.Constants.BlackAndWhiteFilterColor.Red,
- 'Strength': 70
- }
-
- def Do(Environment):
- # BlackAndWhiteFilm
- App.Do( Environment, 'BlackAndWhiteFilm', Preset_BlackAndWhiteFilm())
-
-